dictionary comprehension
MetPy Mondays `#66 - Dictionary Comprehensions : Unidata Developer's Blog
https://www.unidata.ucar.edu/blogs/developer/en/entry/metpy-mondays-66-dictionary-comprehensions
code:python
my_dict = {nameval for name, val in zip(labels,data)}
process_data = {(k.replace('_log', '') if k.endwith('log') else k):(np.log10(v) if k.endtiwh('log') else v) for (k,v) in original_data.item()}